home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / core / IChildList.as < prev    next >
Text File  |  2009-02-12  |  915b  |  33 lines

  1. package mx.core
  2. {
  3.    import flash.display.DisplayObject;
  4.    import flash.geom.Point;
  5.    
  6.    public interface IChildList
  7.    {
  8.        
  9.       
  10.       function get numChildren() : int;
  11.       
  12.       function removeChild(param1:DisplayObject) : DisplayObject;
  13.       
  14.       function getChildByName(param1:String) : DisplayObject;
  15.       
  16.       function removeChildAt(param1:int) : DisplayObject;
  17.       
  18.       function getChildIndex(param1:DisplayObject) : int;
  19.       
  20.       function addChildAt(param1:DisplayObject, param2:int) : DisplayObject;
  21.       
  22.       function getObjectsUnderPoint(param1:Point) : Array;
  23.       
  24.       function setChildIndex(param1:DisplayObject, param2:int) : void;
  25.       
  26.       function getChildAt(param1:int) : DisplayObject;
  27.       
  28.       function addChild(param1:DisplayObject) : DisplayObject;
  29.       
  30.       function contains(param1:DisplayObject) : Boolean;
  31.    }
  32. }
  33.